home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / snpd0492.zip / SSTRCPY.C < prev    next >
C/C++ Source or Header  |  1992-04-13  |  220b  |  14 lines

  1. #include <string.h>
  2.  
  3. char *sstrcpy(char *to, char *from)
  4. {
  5.     memmove(to, from, 1+strlen(from));
  6.     return to;
  7. }
  8.  
  9. char *sstrcat(char *to, char *from)
  10. {
  11.     sstrcpy(to + strlen(to), from);
  12.     return to;
  13. }
  14.